home *** CD-ROM | disk | FTP | other *** search
- public class RpgConversation extends Codex {
- private String _conversationName;
- private String _fileName;
- private int _flags;
- public static String[] _params = new String[]{"Conversation name", "Filename", "Execution flags;0"};
-
- public RpgConversation(String conversationName, String fileName, int flags) {
- this._conversationName = conversationName;
- this._fileName = fileName;
- this._flags = flags;
- }
-
- public void clicked(int guid, int clickerGuid, int captureID) {
- ((Codex)this).ExecuteConversation(clickerGuid, 0, this._conversationName, this._fileName, this._flags);
- }
- }
-